Deploying Operator
There are two ways to deploy operator into a kubernetes cluster. In this example, we deploy the operator with helm which is recommended one.
warning
It is recommended that you change the namespace with more proper one.warning
Changing configs.logLevel to Debug may cause excessive log output.helm repo add btungut https://btungut.github.io
helm upgrade -i azure-keyvault-secret-operator btungut/kubernetes-azure-keyvault-secret-operator --set configs.logLevel="Debug" --namespace default
Creating Namespaces
As explained in use-case scenario, some namespaces need to be present in kubernetes cluster.
kubectl create namespace superstore-test
kubectl create namespace newsletter-test
kubectl create namespace superstore-dev
kubectl create namespace newsletter-dev